home *** CD-ROM | disk | FTP | other *** search
- /* Definitions common to both FTP servers and clients */
-
- #ifndef ASCII_TYPE
-
- #define BLKSIZE 2048 /* Chunk size for file I/O */
-
- #define ASCII_TYPE 0
- #define IMAGE_TYPE 1
- #define LOGICAL_TYPE 2
-
- #if defined(__STDC__) || defined(__TURBOC__)
- long sendfile(FILE *fp,int s,int mode);
- long recvfile(FILE *fp,int s,int mode);
- #else
- long sendfile();
- long recvfile();
- #endif
-
- #endif /* ASCII_TYPE */
-
-